home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Skunkware 5
/
Skunkware 5.iso
/
src
/
X11
/
tiff
/
tif_compress.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-06-21
|
4KB
|
157 lines
/* $Header: /usr/people/sam/tiff/libtiff/RCS/tif_compress.c,v 1.35 1994/07/26 16:45:49 sam Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994 Sam Leffler
* Copyright (c) 1991, 1992, 1993, 1994 Silicon Graphics, Inc.
*
* Permission to use, copy, modify, distribute, and sell this software and
* its documentation for any purpose is hereby granted without fee, provided
* that (i) the above copyright notices and this permission notice appear in
* all copies of the software and related documentation, and (ii) the names of
* Sam Leffler and Silicon Graphics may not be used in any advertising or
* publicity relating to the software without the specific, prior written
* permission of Sam Leffler and Silicon Graphics.
*
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
*
* IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
* ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
* WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
* LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THIS SOFTWARE.
*/
/*
* TIFF Library
*
* Compression Scheme Configuration Support.
*/
#include "tiffiop.h"
typedef struct {
char* name;
int scheme;
TIFFBoolMethod init;
} cscheme_t;
static const cscheme_t CompressionSchemes[] = {
{ "Null", COMPRESSION_NONE, TIFFInitDumpMode },
#ifdef LZW_SUPPORT
{ "LZW", COMPRESSION_LZW, TIFFInitLZW },
#endif
#ifdef PACKBITS_SUPPORT
{ "PackBits", COMPRESSION_PACKBITS, TIFFInitPackBits },
#endif
#ifdef THUNDER_SUPPORT
{ "ThunderScan", COMPRESSION_THUNDERSCAN,TIFFInitThunderScan },
#endif
#ifdef NEXT_SUPPORT
{ "NeXT", COMPRESSION_NEXT, TIFFInitNeXT },
#endif
#ifdef JPEG_SUPPORT
{ "JPEG", COMPRESSION_JPEG, TIFFInitJPEG },
#endif
#ifdef CCITT_SUPPORT
{ "CCITT RLE", COMPRESSION_CCITTRLE, TIFFInitCCITTRLE },
{ "CCITT RLE/W", COMPRESSION_CCITTRLEW, TIFFInitCCITTRLEW },
{ "CCITT Group3", COMPRESSION_CCITTFAX3, TIFFInitCCITTFax3 },
{ "CCITT Group4", COMPRESSION_CCITTFAX4, TIFFInitCCITTFax4 },
#endif
};
#define NSCHEMES (sizeof (CompressionSchemes) / sizeof (CompressionSchemes[0]))
static const cscheme_t *
findScheme(int scheme)
{
register const cscheme_t *c;
for (c = CompressionSchemes; c < &CompressionSchemes[NSCHEMES]; c++)
if (c->scheme == scheme)
return (c);
return ((const cscheme_t *)0);
}
static int
TIFFNoEncode(TIFF* tif, char* method)
{
const cscheme_t *c = findScheme(tif->tif_dir.td_compression);
TIFFError(tif->tif_name,
"%s %s encoding is not implemented", c->name, method);
return (-1);
}
int
TIFFNoRowEncode(TIFF* tif, tidata_t pp, tsize_t cc, tsample_t s)
{
return (TIFFNoEncode(tif, "scanline"));
}
int
TIFFNoStripEncode(TIFF* tif, tidata_t pp, tsize_t cc, tsample_t s)
{
return (TIFFNoEncode(tif, "strip"));
}
int
TIFFNoTileEncode(TIFF* tif, tidata_t pp, tsize_t cc, tsample_t s)
{
return (TIFFNoEncode(tif, "tile"));
}
static int
TIFFNoDecode(TIFF* tif, char* method)
{
const cscheme_t *c = findScheme(tif->tif_dir.td_compression);
TIFFError(tif->tif_name,
"%s %s decoding is not implemented", c->name, method);
return (-1);
}
int
TIFFNoRowDecode(TIFF* tif, tidata_t pp, tsize_t cc, tsample_t s)
{
return (TIFFNoDecode(tif, "scanline"));
}
int
TIFFNoStripDecode(TIFF* tif, tidata_t pp, tsize_t cc, tsample_t s)
{
return (TIFFNoDecode(tif, "strip"));
}
int
TIFFNoTileDecode(TIFF* tif, tidata_t pp, tsize_t cc, tsample_t s)
{
return (TIFFNoDecode(tif, "tile"));
}
int
TIFFSetCompressionScheme(TIFF* tif, int scheme)
{
const cscheme_t *c = findScheme(scheme);
if (!c) {
TIFFError(tif->tif_name,
"Unknown data compression algorithm %u (0x%x)",
scheme, scheme);
return (0);
}
tif->tif_predecode = NULL;
tif->tif_decoderow = TIFFNoRowDecode;
tif->tif_decodestrip = TIFFNoStripDecode;
tif->tif_decodetile = TIFFNoTileDecode;
tif->tif_preencode = NULL;
tif->tif_postencode = NULL;
tif->tif_encoderow = TIFFNoRowEncode;
tif->tif_encodestrip = TIFFNoStripEncode;
tif->tif_encodetile = TIFFNoTileEncode;
tif->tif_close = NULL;
tif->tif_seek = NULL;
tif->tif_cleanup = NULL;
tif->tif_flags &= ~TIFF_NOBITREV;
tif->tif_options = 0;
return ((*c->init)(tif));
}